In [ ]:
# Add all necessary imports here
import matplotlib.pyplot as plt
import numpy
import tensorflow as tf
%matplotlib inline
plt.style.reload_library()
plt.style.use("ggplot")

Preaombolo

GPGPU and TensorFlow in continuous waves research

GPGPU

Graphic Processing Units

Evolution

GPU parallelism


In [ ]:
<section>
	<h3 style="text-transform: none;">GPU computation paradigm</h3>
    <img src="/home/protoss/TESI/thesis/img/cap3/gpu1.png" width=1000 />
    <img src="/home/protoss/TESI/Immagini/cap3/gpu2.jpg" width=600 />
</section>

Python example

Code

# This program adds up integers in the command line
import sys
try:
    total = sum(int(arg) for arg in sys.argv[1:])
    print 'sum =', total
except ValueError:
    print 'Please supply integer arguments'

In [ ]: